home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / imlib / port / dos4gw / mtest.c < prev    next >
C/C++ Source or Header  |  1995-08-07  |  302b  |  19 lines

  1. #include "i86.h"
  2.  
  3. main()
  4. {
  5.   union  REGS in,out;
  6.   memset(&in,0,sizeof(in));
  7.   in.w.ax=0;
  8.   int386(0x33,&in,&out);
  9.  
  10.   printf("Has a mouse = %d\n",((unsigned short)out.w.ax)==0xffff);
  11.  
  12.   memset(&in,0,sizeof(in));
  13.   in.w.ax=4;
  14.   in.w.cx=40;
  15.   in.w.dx=40;
  16.    
  17.   int386(0x33,&in,&out);
  18. }
  19.